EDBI Routines for PostgreSQL
Data mapping (any COMP type could be used, mapping it is done according with digits):
PIC X(n) | VARCHAR(n)[1] |
PIC 9(n) | NUMERIC(n) |
PIC 9(n)V9(m) | NUMERIC(n+m,m) |
PIC S9(n)V9(m) | NUMERIC(n+m,m) |
[1] It will be CHAR if you used either the
-defCHAR option with the edbiis command or the
-ca option in the Compiler command line.
Peculiar jdbc settings:
iscobol.jdbc.autocommit=true | Unless you’re using transactions as described at Transactions, you should keep autocommit on. |